From 0e6cf5a2afd0b58a6538a85c47430e78f313ef2d Mon Sep 17 00:00:00 2001 From: "arun.sharma@intel.com[kaf24]" Date: Tue, 14 Jun 2005 13:06:33 +0000 Subject: [PATCH] bitkeeper revision 1.1713.1.8 (42aed659DzIwFCeaK8Cxa8ZpzbHR-Q) [PATCH] 64-session-id.patch session_id is an opaque pointer, so should be wider on 64 bit platforms. Signed-off-by: Kevin Tian Signed-off-by: Arun Sharma --- tools/python/xen/lowlevel/xu/xu.c | 2 +- tools/xcs/xcs_proto.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/python/xen/lowlevel/xu/xu.c b/tools/python/xen/lowlevel/xu/xu.c index 65660ba6dc..cd616e75bc 100644 --- a/tools/python/xen/lowlevel/xu/xu.c +++ b/tools/python/xen/lowlevel/xu/xu.c @@ -72,7 +72,7 @@ static void set_cloexec(int fd) static int xcs_ctrl_fd = -1; /* control connection to the xcs server. */ static int xcs_data_fd = -1; /* data connection to the xcs server. */ -static u32 xcs_session_id = 0; +static unsigned long xcs_session_id = 0; static int xcs_ctrl_send(xcs_msg_t *msg); static int xcs_ctrl_read(xcs_msg_t *msg); diff --git a/tools/xcs/xcs_proto.h b/tools/xcs/xcs_proto.h index fa04621f40..7038467c90 100644 --- a/tools/xcs/xcs_proto.h +++ b/tools/xcs/xcs_proto.h @@ -40,7 +40,7 @@ #define TYPE_VIRQ 0xfffe typedef struct { - u32 session_id; + unsigned long session_id; } xcs_connect_msg_t; typedef struct { -- 2.30.2